home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
H4CK3R 14
/
hacker14.iso
/
programacao
/
visual
/
perl.exe
/
{app}
/
Webroot
/
cgi-bin
/
time1.pl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Perl Script
|
2003-01-11
|
213 b
|
12 lines
#!perl
use CGI ':standard';
$current_time = localtime;
print header,
start_html('A Virtual Clock'),
h1('A Virtual Clock'),
"The current time is $current_time.",
hr,
end_html;